Skip to content

IBindingTypeConverter interface

Defined in

Namespace: ReactiveUI Assembly: ReactiveUI.Core.dll Full name: ReactiveUI.IBindingTypeConverter<T1, T2> Modifiers: public abstract

Summary

Generic type-safe interface for converting between specific types. Implement this alongside IBindingTypeConverter for AOT-safe conversions.

Applies to

net10.0, net10.0-maccatalyst26.0, net10.0-desktop1.0, net10.0-browserwasm1.0, net10.0-tvos26.0, net10.0-windows10.0.19041, net10.0-macos26.0, net10.0-ios26.0, net10.0-android36.0, net9.0, net9.0-tvos18.0, net9.0-macos15.0, net9.0-maccatalyst18.0, net9.0-windows10.0.19041, net9.0-ios18.0, net9.0-desktop1.0, net8.0, net8.0-windows10.0.19041, net8.0-ios18.0, net8.0-maccatalyst18.0, net8.0-macos15.0, net8.0-tvos18.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.5, netstandard2.1, net481, net462, net471

Class hierarchy
classDiagram
class IBindingTypeConverter~T1,T2~
class IBindingTypeConverter {
    <>
}
IBindingTypeConverter <|.. IBindingTypeConverter~T1,T2~
class IEnableLogger {
    <>
}
IEnableLogger <|.. IBindingTypeConverter~T1,T2~

Implements: IBindingTypeConverter, IEnableLogger

Remarks

This interface provides compile-time type safety for type conversions, enabling AOT-compatible code paths that avoid boxing and reflection.

The generic TryConvert method is preferred over the base interface's object-based method when types are known at compile time.

Methods

NameSummary
TryConvertConvert a value to the target type in a type-safe manner.